Left Termination of the query pattern perm1_in_2(g, a) w.r.t. the given Prolog program could successfully be proven:



Prolog
  ↳ PrologToPiTRSProof

Clauses:

perm1([], []).
perm1(Xs, .(X, Ys)) :- ','(select(X, Xs, Zs), perm1(Zs, Ys)).
select(X, .(X, Xs), Xs).
select(X, .(Y, Xs), .(Y, Zs)) :- select(X, Xs, Zs).

Queries:

perm1(g,a).

We use the technique of [30]. With regard to the inferred argument filtering the predicates were used in the following modes:
perm1_in: (b,f)
select_in: (f,b,f)
Transforming Prolog into the following Term Rewriting System:
Pi-finite rewrite system:
The TRS R consists of the following rules:

perm1_in_ga([], []) → perm1_out_ga([], [])
perm1_in_ga(Xs, .(X, Ys)) → U1_ga(Xs, X, Ys, select_in_aga(X, Xs, Zs))
select_in_aga(X, .(X, Xs), Xs) → select_out_aga(X, .(X, Xs), Xs)
select_in_aga(X, .(Y, Xs), .(Y, Zs)) → U3_aga(X, Y, Xs, Zs, select_in_aga(X, Xs, Zs))
U3_aga(X, Y, Xs, Zs, select_out_aga(X, Xs, Zs)) → select_out_aga(X, .(Y, Xs), .(Y, Zs))
U1_ga(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → U2_ga(Xs, X, Ys, perm1_in_ga(Zs, Ys))
U2_ga(Xs, X, Ys, perm1_out_ga(Zs, Ys)) → perm1_out_ga(Xs, .(X, Ys))

The argument filtering Pi contains the following mapping:
perm1_in_ga(x1, x2)  =  perm1_in_ga(x1)
[]  =  []
perm1_out_ga(x1, x2)  =  perm1_out_ga(x2)
U1_ga(x1, x2, x3, x4)  =  U1_ga(x4)
select_in_aga(x1, x2, x3)  =  select_in_aga(x2)
.(x1, x2)  =  .(x1, x2)
select_out_aga(x1, x2, x3)  =  select_out_aga(x1, x3)
U3_aga(x1, x2, x3, x4, x5)  =  U3_aga(x2, x5)
U2_ga(x1, x2, x3, x4)  =  U2_ga(x2, x4)

Infinitary Constructor Rewriting Termination of PiTRS implies Termination of Prolog



↳ Prolog
  ↳ PrologToPiTRSProof
PiTRS
      ↳ DependencyPairsProof

Pi-finite rewrite system:
The TRS R consists of the following rules:

perm1_in_ga([], []) → perm1_out_ga([], [])
perm1_in_ga(Xs, .(X, Ys)) → U1_ga(Xs, X, Ys, select_in_aga(X, Xs, Zs))
select_in_aga(X, .(X, Xs), Xs) → select_out_aga(X, .(X, Xs), Xs)
select_in_aga(X, .(Y, Xs), .(Y, Zs)) → U3_aga(X, Y, Xs, Zs, select_in_aga(X, Xs, Zs))
U3_aga(X, Y, Xs, Zs, select_out_aga(X, Xs, Zs)) → select_out_aga(X, .(Y, Xs), .(Y, Zs))
U1_ga(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → U2_ga(Xs, X, Ys, perm1_in_ga(Zs, Ys))
U2_ga(Xs, X, Ys, perm1_out_ga(Zs, Ys)) → perm1_out_ga(Xs, .(X, Ys))

The argument filtering Pi contains the following mapping:
perm1_in_ga(x1, x2)  =  perm1_in_ga(x1)
[]  =  []
perm1_out_ga(x1, x2)  =  perm1_out_ga(x2)
U1_ga(x1, x2, x3, x4)  =  U1_ga(x4)
select_in_aga(x1, x2, x3)  =  select_in_aga(x2)
.(x1, x2)  =  .(x1, x2)
select_out_aga(x1, x2, x3)  =  select_out_aga(x1, x3)
U3_aga(x1, x2, x3, x4, x5)  =  U3_aga(x2, x5)
U2_ga(x1, x2, x3, x4)  =  U2_ga(x2, x4)


Using Dependency Pairs [1,30] we result in the following initial DP problem:
Pi DP problem:
The TRS P consists of the following rules:

PERM1_IN_GA(Xs, .(X, Ys)) → U1_GA(Xs, X, Ys, select_in_aga(X, Xs, Zs))
PERM1_IN_GA(Xs, .(X, Ys)) → SELECT_IN_AGA(X, Xs, Zs)
SELECT_IN_AGA(X, .(Y, Xs), .(Y, Zs)) → U3_AGA(X, Y, Xs, Zs, select_in_aga(X, Xs, Zs))
SELECT_IN_AGA(X, .(Y, Xs), .(Y, Zs)) → SELECT_IN_AGA(X, Xs, Zs)
U1_GA(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → U2_GA(Xs, X, Ys, perm1_in_ga(Zs, Ys))
U1_GA(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → PERM1_IN_GA(Zs, Ys)

The TRS R consists of the following rules:

perm1_in_ga([], []) → perm1_out_ga([], [])
perm1_in_ga(Xs, .(X, Ys)) → U1_ga(Xs, X, Ys, select_in_aga(X, Xs, Zs))
select_in_aga(X, .(X, Xs), Xs) → select_out_aga(X, .(X, Xs), Xs)
select_in_aga(X, .(Y, Xs), .(Y, Zs)) → U3_aga(X, Y, Xs, Zs, select_in_aga(X, Xs, Zs))
U3_aga(X, Y, Xs, Zs, select_out_aga(X, Xs, Zs)) → select_out_aga(X, .(Y, Xs), .(Y, Zs))
U1_ga(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → U2_ga(Xs, X, Ys, perm1_in_ga(Zs, Ys))
U2_ga(Xs, X, Ys, perm1_out_ga(Zs, Ys)) → perm1_out_ga(Xs, .(X, Ys))

The argument filtering Pi contains the following mapping:
perm1_in_ga(x1, x2)  =  perm1_in_ga(x1)
[]  =  []
perm1_out_ga(x1, x2)  =  perm1_out_ga(x2)
U1_ga(x1, x2, x3, x4)  =  U1_ga(x4)
select_in_aga(x1, x2, x3)  =  select_in_aga(x2)
.(x1, x2)  =  .(x1, x2)
select_out_aga(x1, x2, x3)  =  select_out_aga(x1, x3)
U3_aga(x1, x2, x3, x4, x5)  =  U3_aga(x2, x5)
U2_ga(x1, x2, x3, x4)  =  U2_ga(x2, x4)
PERM1_IN_GA(x1, x2)  =  PERM1_IN_GA(x1)
SELECT_IN_AGA(x1, x2, x3)  =  SELECT_IN_AGA(x2)
U2_GA(x1, x2, x3, x4)  =  U2_GA(x2, x4)
U1_GA(x1, x2, x3, x4)  =  U1_GA(x4)
U3_AGA(x1, x2, x3, x4, x5)  =  U3_AGA(x2, x5)

We have to consider all (P,R,Pi)-chains

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
PiDP
          ↳ DependencyGraphProof

Pi DP problem:
The TRS P consists of the following rules:

PERM1_IN_GA(Xs, .(X, Ys)) → U1_GA(Xs, X, Ys, select_in_aga(X, Xs, Zs))
PERM1_IN_GA(Xs, .(X, Ys)) → SELECT_IN_AGA(X, Xs, Zs)
SELECT_IN_AGA(X, .(Y, Xs), .(Y, Zs)) → U3_AGA(X, Y, Xs, Zs, select_in_aga(X, Xs, Zs))
SELECT_IN_AGA(X, .(Y, Xs), .(Y, Zs)) → SELECT_IN_AGA(X, Xs, Zs)
U1_GA(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → U2_GA(Xs, X, Ys, perm1_in_ga(Zs, Ys))
U1_GA(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → PERM1_IN_GA(Zs, Ys)

The TRS R consists of the following rules:

perm1_in_ga([], []) → perm1_out_ga([], [])
perm1_in_ga(Xs, .(X, Ys)) → U1_ga(Xs, X, Ys, select_in_aga(X, Xs, Zs))
select_in_aga(X, .(X, Xs), Xs) → select_out_aga(X, .(X, Xs), Xs)
select_in_aga(X, .(Y, Xs), .(Y, Zs)) → U3_aga(X, Y, Xs, Zs, select_in_aga(X, Xs, Zs))
U3_aga(X, Y, Xs, Zs, select_out_aga(X, Xs, Zs)) → select_out_aga(X, .(Y, Xs), .(Y, Zs))
U1_ga(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → U2_ga(Xs, X, Ys, perm1_in_ga(Zs, Ys))
U2_ga(Xs, X, Ys, perm1_out_ga(Zs, Ys)) → perm1_out_ga(Xs, .(X, Ys))

The argument filtering Pi contains the following mapping:
perm1_in_ga(x1, x2)  =  perm1_in_ga(x1)
[]  =  []
perm1_out_ga(x1, x2)  =  perm1_out_ga(x2)
U1_ga(x1, x2, x3, x4)  =  U1_ga(x4)
select_in_aga(x1, x2, x3)  =  select_in_aga(x2)
.(x1, x2)  =  .(x1, x2)
select_out_aga(x1, x2, x3)  =  select_out_aga(x1, x3)
U3_aga(x1, x2, x3, x4, x5)  =  U3_aga(x2, x5)
U2_ga(x1, x2, x3, x4)  =  U2_ga(x2, x4)
PERM1_IN_GA(x1, x2)  =  PERM1_IN_GA(x1)
SELECT_IN_AGA(x1, x2, x3)  =  SELECT_IN_AGA(x2)
U2_GA(x1, x2, x3, x4)  =  U2_GA(x2, x4)
U1_GA(x1, x2, x3, x4)  =  U1_GA(x4)
U3_AGA(x1, x2, x3, x4, x5)  =  U3_AGA(x2, x5)

We have to consider all (P,R,Pi)-chains
The approximation of the Dependency Graph [30] contains 2 SCCs with 3 less nodes.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
PiDP
                ↳ UsableRulesProof
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

SELECT_IN_AGA(X, .(Y, Xs), .(Y, Zs)) → SELECT_IN_AGA(X, Xs, Zs)

The TRS R consists of the following rules:

perm1_in_ga([], []) → perm1_out_ga([], [])
perm1_in_ga(Xs, .(X, Ys)) → U1_ga(Xs, X, Ys, select_in_aga(X, Xs, Zs))
select_in_aga(X, .(X, Xs), Xs) → select_out_aga(X, .(X, Xs), Xs)
select_in_aga(X, .(Y, Xs), .(Y, Zs)) → U3_aga(X, Y, Xs, Zs, select_in_aga(X, Xs, Zs))
U3_aga(X, Y, Xs, Zs, select_out_aga(X, Xs, Zs)) → select_out_aga(X, .(Y, Xs), .(Y, Zs))
U1_ga(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → U2_ga(Xs, X, Ys, perm1_in_ga(Zs, Ys))
U2_ga(Xs, X, Ys, perm1_out_ga(Zs, Ys)) → perm1_out_ga(Xs, .(X, Ys))

The argument filtering Pi contains the following mapping:
perm1_in_ga(x1, x2)  =  perm1_in_ga(x1)
[]  =  []
perm1_out_ga(x1, x2)  =  perm1_out_ga(x2)
U1_ga(x1, x2, x3, x4)  =  U1_ga(x4)
select_in_aga(x1, x2, x3)  =  select_in_aga(x2)
.(x1, x2)  =  .(x1, x2)
select_out_aga(x1, x2, x3)  =  select_out_aga(x1, x3)
U3_aga(x1, x2, x3, x4, x5)  =  U3_aga(x2, x5)
U2_ga(x1, x2, x3, x4)  =  U2_ga(x2, x4)
SELECT_IN_AGA(x1, x2, x3)  =  SELECT_IN_AGA(x2)

We have to consider all (P,R,Pi)-chains
For (infinitary) constructor rewriting [30] we can delete all non-usable rules from R.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
                ↳ UsableRulesProof
PiDP
                    ↳ PiDPToQDPProof
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

SELECT_IN_AGA(X, .(Y, Xs), .(Y, Zs)) → SELECT_IN_AGA(X, Xs, Zs)

R is empty.
The argument filtering Pi contains the following mapping:
.(x1, x2)  =  .(x1, x2)
SELECT_IN_AGA(x1, x2, x3)  =  SELECT_IN_AGA(x2)

We have to consider all (P,R,Pi)-chains
Transforming (infinitary) constructor rewriting Pi-DP problem [30] into ordinary QDP problem [15] by application of Pi.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
QDP
                        ↳ QDPSizeChangeProof
              ↳ PiDP

Q DP problem:
The TRS P consists of the following rules:

SELECT_IN_AGA(.(Y, Xs)) → SELECT_IN_AGA(Xs)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
PiDP
                ↳ UsableRulesProof

Pi DP problem:
The TRS P consists of the following rules:

U1_GA(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → PERM1_IN_GA(Zs, Ys)
PERM1_IN_GA(Xs, .(X, Ys)) → U1_GA(Xs, X, Ys, select_in_aga(X, Xs, Zs))

The TRS R consists of the following rules:

perm1_in_ga([], []) → perm1_out_ga([], [])
perm1_in_ga(Xs, .(X, Ys)) → U1_ga(Xs, X, Ys, select_in_aga(X, Xs, Zs))
select_in_aga(X, .(X, Xs), Xs) → select_out_aga(X, .(X, Xs), Xs)
select_in_aga(X, .(Y, Xs), .(Y, Zs)) → U3_aga(X, Y, Xs, Zs, select_in_aga(X, Xs, Zs))
U3_aga(X, Y, Xs, Zs, select_out_aga(X, Xs, Zs)) → select_out_aga(X, .(Y, Xs), .(Y, Zs))
U1_ga(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → U2_ga(Xs, X, Ys, perm1_in_ga(Zs, Ys))
U2_ga(Xs, X, Ys, perm1_out_ga(Zs, Ys)) → perm1_out_ga(Xs, .(X, Ys))

The argument filtering Pi contains the following mapping:
perm1_in_ga(x1, x2)  =  perm1_in_ga(x1)
[]  =  []
perm1_out_ga(x1, x2)  =  perm1_out_ga(x2)
U1_ga(x1, x2, x3, x4)  =  U1_ga(x4)
select_in_aga(x1, x2, x3)  =  select_in_aga(x2)
.(x1, x2)  =  .(x1, x2)
select_out_aga(x1, x2, x3)  =  select_out_aga(x1, x3)
U3_aga(x1, x2, x3, x4, x5)  =  U3_aga(x2, x5)
U2_ga(x1, x2, x3, x4)  =  U2_ga(x2, x4)
PERM1_IN_GA(x1, x2)  =  PERM1_IN_GA(x1)
U1_GA(x1, x2, x3, x4)  =  U1_GA(x4)

We have to consider all (P,R,Pi)-chains
For (infinitary) constructor rewriting [30] we can delete all non-usable rules from R.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
PiDP
                    ↳ PiDPToQDPProof

Pi DP problem:
The TRS P consists of the following rules:

U1_GA(Xs, X, Ys, select_out_aga(X, Xs, Zs)) → PERM1_IN_GA(Zs, Ys)
PERM1_IN_GA(Xs, .(X, Ys)) → U1_GA(Xs, X, Ys, select_in_aga(X, Xs, Zs))

The TRS R consists of the following rules:

select_in_aga(X, .(X, Xs), Xs) → select_out_aga(X, .(X, Xs), Xs)
select_in_aga(X, .(Y, Xs), .(Y, Zs)) → U3_aga(X, Y, Xs, Zs, select_in_aga(X, Xs, Zs))
U3_aga(X, Y, Xs, Zs, select_out_aga(X, Xs, Zs)) → select_out_aga(X, .(Y, Xs), .(Y, Zs))

The argument filtering Pi contains the following mapping:
select_in_aga(x1, x2, x3)  =  select_in_aga(x2)
.(x1, x2)  =  .(x1, x2)
select_out_aga(x1, x2, x3)  =  select_out_aga(x1, x3)
U3_aga(x1, x2, x3, x4, x5)  =  U3_aga(x2, x5)
PERM1_IN_GA(x1, x2)  =  PERM1_IN_GA(x1)
U1_GA(x1, x2, x3, x4)  =  U1_GA(x4)

We have to consider all (P,R,Pi)-chains
Transforming (infinitary) constructor rewriting Pi-DP problem [30] into ordinary QDP problem [15] by application of Pi.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
QDP
                        ↳ RuleRemovalProof

Q DP problem:
The TRS P consists of the following rules:

PERM1_IN_GA(Xs) → U1_GA(select_in_aga(Xs))
U1_GA(select_out_aga(X, Zs)) → PERM1_IN_GA(Zs)

The TRS R consists of the following rules:

select_in_aga(.(X, Xs)) → select_out_aga(X, Xs)
select_in_aga(.(Y, Xs)) → U3_aga(Y, select_in_aga(Xs))
U3_aga(Y, select_out_aga(X, Zs)) → select_out_aga(X, .(Y, Zs))

The set Q consists of the following terms:

select_in_aga(x0)
U3_aga(x0, x1)

We have to consider all (P,Q,R)-chains.
By using the rule removal processor [15] with the following polynomial ordering [25], at least one Dependency Pair or term rewrite system rule of this QDP problem can be strictly oriented.

Strictly oriented rules of the TRS R:

select_in_aga(.(X, Xs)) → select_out_aga(X, Xs)

Used ordering: POLO with Polynomial interpretation [25]:

POL(.(x1, x2)) = 1 + 2·x1 + x2   
POL(PERM1_IN_GA(x1)) = x1   
POL(U1_GA(x1)) = x1   
POL(U3_aga(x1, x2)) = 1 + 2·x1 + x2   
POL(select_in_aga(x1)) = x1   
POL(select_out_aga(x1, x2)) = x1 + x2   



↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
                      ↳ QDP
                        ↳ RuleRemovalProof
QDP
                            ↳ RuleRemovalProof

Q DP problem:
The TRS P consists of the following rules:

U1_GA(select_out_aga(X, Zs)) → PERM1_IN_GA(Zs)
PERM1_IN_GA(Xs) → U1_GA(select_in_aga(Xs))

The TRS R consists of the following rules:

select_in_aga(.(Y, Xs)) → U3_aga(Y, select_in_aga(Xs))
U3_aga(Y, select_out_aga(X, Zs)) → select_out_aga(X, .(Y, Zs))

The set Q consists of the following terms:

select_in_aga(x0)
U3_aga(x0, x1)

We have to consider all (P,Q,R)-chains.
By using the rule removal processor [15] with the following polynomial ordering [25], at least one Dependency Pair or term rewrite system rule of this QDP problem can be strictly oriented.
Strictly oriented dependency pairs:

U1_GA(select_out_aga(X, Zs)) → PERM1_IN_GA(Zs)


Used ordering: POLO with Polynomial interpretation [25]:

POL(.(x1, x2)) = x1 + x2   
POL(PERM1_IN_GA(x1)) = 2·x1   
POL(U1_GA(x1)) = x1   
POL(U3_aga(x1, x2)) = 2·x1 + x2   
POL(select_in_aga(x1)) = 2·x1   
POL(select_out_aga(x1, x2)) = 1 + x1 + 2·x2   



↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
                      ↳ QDP
                        ↳ RuleRemovalProof
                          ↳ QDP
                            ↳ RuleRemovalProof
QDP
                                ↳ DependencyGraphProof

Q DP problem:
The TRS P consists of the following rules:

PERM1_IN_GA(Xs) → U1_GA(select_in_aga(Xs))

The TRS R consists of the following rules:

select_in_aga(.(Y, Xs)) → U3_aga(Y, select_in_aga(Xs))
U3_aga(Y, select_out_aga(X, Zs)) → select_out_aga(X, .(Y, Zs))

The set Q consists of the following terms:

select_in_aga(x0)
U3_aga(x0, x1)

We have to consider all (P,Q,R)-chains.
The approximation of the Dependency Graph [15,17,22] contains 0 SCCs with 1 less node.